home *** CD-ROM | disk | FTP | other *** search
- ;
- ; PC-Write Pop-up Menu Configuration
- ;
- Comment ("Configured for PC-Write (special thanks to Bruce Gregory)")
-
-
- ; Parameters
- ;
- Sensitivity (4,6) ;(Xinc, Yinc)
- Hysteresis (2,2) ;(AutoX, AutoY)
- ReverseVideo (Yes) ;Menu is displayed in reverse video
- FixedMenu (no) ;Menu is not in a fixed position
- EnableBeep (No) ;Beeps if wrong button pressed with menu up
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
- LBB: Button(Menu(Block)) ;Left button, Block Menu
- LBP: Button(Menu(Page)) ;Left button, Page Menu
- MBE: Button(Menu(Edit)) ;Middle button, Edit Menu
- MBF: Button(Menu(File)) ;Middle button, File Menu
- RBM: Button(Menu(Move)) ;Right button, Move Menu
- RBS: Button(Menu(Search)) ;Right button, Search Menu
- ;
- ; Menu Definitions
- ;
- Block: Menu
- (
- Title("Block")
- Item ("Page Menu", Menu(Page), Button(LBP))
- Item ("Mark All", Keys([a-F5]))
- Item ("Clear Marks", Keys([F5]))
- Item ("Mark Beg/End", Keys([F6]))
- Item ("Del Marked", Keys([F4] [F4] [F5]))
- Item ("Move Marked", Keys([F6] [F5]))
- Item ("Copy Marked", Keys([F3] [F5]))
- Item ("Copy to File", Keys([a-F6] [a-F6]))
- Item ("Un-Delete", Keys([a-F4] [F5]))
- )
- ;
- Page: Menu
- (
- Title("Page")
- Item ("Block Menu", Menu(Block), Button(LBB))
- Item ("Ruler Line", Keys([F2]))
- Item ("Read Ruler", Keys([a-F2]))
- Item ("Left Margin", Keys([c-[]))
- Item ("Right Margin", Keys([c-]]))
- Item ("Break Pages", Keys([a-F1] [F2]))
- Item ("Next Break", Keys([F9] [c-P] [enter] [c-L]))
- Item ("Prev Break", Keys([F9] [c-P] [enter] [c-O]))
- Item ("Location", Keys([a-F9]))
- )
- ;
- Edit: Menu
- (
- Title("Edit")
- Item ("File Menu", Menu(File), Button(MBF))
- Item ("Reformat", Keys([F7]))
- Item ("Justify On", Keys([s-F7]))
- Item ("Upper/Lower", Keys([F8]))
- Item ("Center Line", Keys([s-F8]))
- Item ("Del Word <-", Keys([F4] [c-left] [F4]))
- Item ("Del Word ->", Keys([F4] [c-right] [F4]))
- Item ("Del Line End", Keys([F4] [end] [F4]))
- Item ("Del All Line", Keys([home] [F4] [down] [F4]))
- )
- ;
- File: Menu
- (
- Title("File")
- Item ("Edit Menu", Menu(Edit),Button(MBE))
- Item ("Save File", Keys([F1] [F3]))
- Item ("Save-Exit", Keys([F1] [F2]))
- Item ("Save-Shell", Keys([F1] [F4]))
- Item ("Cancel-Exit", Keys([F1] [Esc] [F2]))
- Item ("Cancel-Shell", Keys([F1] [Esc] [F4]))
- Item ("Rename File", Keys([F1] [F5]))
- Item ("Switch Files", Keys([F1] [F6]))
- Item ("Insert File", Keys([a-F3]))
- )
- ;
- Move: Menu
- (
- Title("Move")
- Item ("Search Menu", Menu(Search), Button(RBS))
- Item ("Beginning", Keys([a-=]))
- Item ("End of Text", Keys([a--]))
- Item ("Page Ahead", Keys([c-R]))
- Item ("Page Back", Keys([c-C]))
- Item ("Paragr Ahead", Keys([c-PgDn]))
- Item ("Paragr Back", Keys([c-PgUp]))
- Item ("Set Marker", Keys([c-home]))
- Item ("GoTo Marker", Keys([c-end]))
- )
- ;
- Search: Menu
- (
- Title("Search")
- Item ("Move Menu", Menu(Move), Button(RBM))
- Item ("From Start", Keys([a-=]))
- Item ("From End", Keys([a--]))
- Item ("Set Find", Keys([F9]))
- Item ("Set Replace", Keys([F9][F10]))
- Item ("Search Ahead", Keys([c-L]))
- Item ("Search Back", Keys([c-O]))
- Item ("Replace Once", Keys([F10]))
- Item ("Replace All", Keys([a-F10] [F1]))
- )
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (LBB)
- Middle (MBE)
- Right (RBM)
- Cursor (ArrowKeys)
- )
-
-